home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / Event / h / EMsgDefs next >
Text File  |  1995-07-08  |  1KB  |  45 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for 
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #                                      
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    Event.EMsgDefs.h
  12.     Author:  Copyright © 1992 Jason Williams
  13.     Version: 1.01 (08 Jul 1995)
  14.     Purpose: Extension to Event.c to allow routing of specific message types
  15.              to different windows' message handlers.
  16.     Mods:    JS - Added prototype for eventmsg__claimanchor.
  17. */
  18.  
  19. #include <stdlib.h>
  20. #include "DeskLib:LinkList.h"
  21. #include "DeskLib:Error.h"
  22. #include "DeskLib:Event.h"
  23. #include "DeskLib:EventMsg.h"
  24.  
  25.  
  26. typedef struct
  27. {
  28.   linklist_header header;
  29.   message_action  messagetype;
  30.   linklist_header windowlist;
  31. } eventmsg_claimrecord;
  32.  
  33.  
  34.  
  35. typedef struct
  36. {
  37.   linklist_header header;
  38.   window_handle   window;
  39.   event_handler   handler;
  40.   void            *reference;
  41. } eventmsg_windowrecord;
  42.  
  43.  
  44. extern linklist_header eventmsg__claimanchor;
  45.